home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / hotkey / AutoHotkey104504_Install.exe / AutoHotkey.chm / docs / scripts / msgboxbuttonnames.ahk < prev    next >
Text File  |  2006-11-15  |  693b  |  25 lines

  1. ; Changing MsgBox's Button Names
  2. ; http://www.autohotkey.com
  3. ; This is a working example script that uses a timer to change
  4. ; the names of the buttons in a MsgBox dialog. Although the button
  5. ; names are changed, the IfMsgBox command still requires that the
  6. ; buttons be referred to by their original names.
  7.  
  8. #SingleInstance
  9. SetTimer, ChangeButtonNames, 50 
  10. MsgBox, 4, Add or Delete, Choose a button:
  11. IfMsgBox, YES 
  12.     MsgBox, You chose Add. 
  13. else 
  14.     MsgBox, You chose Delete. 
  15. return 
  16.  
  17. ChangeButtonNames: 
  18. IfWinNotExist, Add or Delete
  19.     return  ; Keep waiting.
  20. SetTimer, ChangeButtonNames, off 
  21. WinActivate 
  22. ControlSetText, &Yes, &Add 
  23. ControlSetText, &No, &Delete 
  24. return
  25.